home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Include / eval.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-03  |  261 b   |  15 lines

  1. #ifndef Py_EVAL_H
  2. #define Py_EVAL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /* Interface to execute compiled code */
  8.  
  9. DL_IMPORT(PyObject *) PyEval_EvalCode Py_PROTO((PyCodeObject *, PyObject *, PyObject *));
  10.  
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* !Py_EVAL_H */
  15.